Vaccine data, Cases data from the hospital, and the waste water
signal data has been loaded, cleaned, and then merged into one final
dataframe, final_data.
The variables have been log transformed.
The response variable observed_census_ICU_p_acute_care
has been renamed as y and the date has been renamed as ds to fit the
prophet model.
The dataset is divided into train and test set. The test set consist of last 3 days of data.
Adding other variable as regressors to the model.
Fitting the Prophet Model.
Forecasting 3 days into future
Checking last 6 days of forecast data
#> ds yhat yhat_lower yhat_upper
#> 407 2022-01-27 5.008861 4.010202 6.025979
#> 408 2022-01-28 5.057562 3.999176 6.114061
#> 409 2022-01-29 4.996747 3.861012 5.999700
#> 410 2022-01-30 5.244909 4.110294 6.292841
#> 411 2022-01-31 4.827825 3.728331 5.877649
#> 412 2022-02-01 4.988190 3.894629 6.040181
The plot of actual data and predicted data from Prophet forecast. The blue line is predicted data whereas the black dots are actual data.
Root Mean Squared Error on train set:
#> [1] 22.58499
MAPE on train set:
#> [1] 0.5055137
Standard deviation of the actual data
#> [1] 35.92902
Plots comparing actual data and predicted data
RMSE on test set
#> [1] 76.27723
MAPE on test set
#> [1] 0.8909005
Plots comparing actual data and predicted data
The error metrics are high when model is regressed against only those who received 2nd dose in the smaller age groups.
The model trend shows a higher number of cases in the very beginning of January 2021 and then a weak linear increase in trend of hospitalizations in 2021 until April and from April to December there is a decrease in hospitalizations. The extra regressor plot shows the additive effect of regressors and it shows that 2nd dose of vaccination in smaller age groups remains steady until April/May 2021 and then shows a sharp decrease in July 2021 and then shows a linear increase until January 2022. Weekly trend shows there are more hospitalizations on Tuesday and Thursday.